The Hackman at his computer       This is about Bootstrap

Providing a better look for styling a web page.

Bootstrap 5 also uses Javascript

Get Ready!!
+++++======Don't forget to add speccified link and script in the head section.----++++===!!

<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
The above link code is for a CDN (Content Delivery System).
The link below is for bootstapping javascript. Note it is also part of the CDN.
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>

Bootstrap 5 uses HTML elements and CSS properties that require the HTML5 doctype.
  Always include the HTML5 doctype at the beginning of the page, along with the lang attribute and the correct title and character set:
Bootstrap 5 also uses a meta tag for responsiveness for zooming and mobile devices.

The ◊ width=device-width ◊ part sets the width of the page to follow the screen-width of the device (which will vary depending on the device).
◊◊◊The ◊ initial-scale=1 ◊ part sets the initial zoom level when the page is first loaded by the browser.

Content is wrapped in ◊ CONTAINERS ◊ which has two classes.
The ◊ .container ◊class provides a responsive fixed width container
The ◊ .container-fluid ◊ class provides a ◊ full width container

Return to Table of Contents